| C# |
|---|
| public String GetNextToken(Int16& tokenIndex) |
| C# |
|---|
using LJCNetCommon; var tokenizer = new CodeTokenizer(); string text = " string text = " // This is a comment."; tokenizer.SetTokens(text); short tokenIndex = 0; string token = tokenizer.GetNextToken(ref tokenIndex); // Value token = "This". // Value tokenIndex = 1. |